home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
swagd-f
/
files.swg
/
0064_File Exists using pChar.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-03-03
|
430 b
|
28 lines
Uses Crt,Dos,Strings;
VAR
filename : pChar;
fname : String;
{ test to see if file exists }
function FileExists(FileName:pchar):boolean;
inline(
$5A/
$58/
$1E/
$8E/$D8/
$B8/$00/$43/
$CD/$21/
$1F/
$72/$08/
$B8/$01/$00/
$F6/$C1/$10/
$74/$02/
$31/$C0);
BEGIN
fname := Paramstr(1);
WriteLn(FileExists(strPCopy(Filename,fname)));
END.